#container-7 {
    position: relative;
    left: 300px;
    width: calc(100% - 320px);
    height: auto;
    background-color: var(--bg-color-2);
    padding: 10px;
    padding-top: 50px;
    transition: all 1s;
    overflow: hidden;
    padding-bottom: 20px;
    overflow: hidden;
}


.reviews {
    height: 85%;
    background-color: transparent;
    overflow-x: hidden !important;
    display: flex;
    user-select: none;
    margin: 0 auto;
}

.review-box {
    height: 60vh;
    width: 370px;
    /* float: left; */
    margin-top: 50px;
    text-align: center;
    flex:  0 0 370px;
}


.client-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.client-name {
    color: #dddad6;
    font-weight: 700px;
    font-size: 18px;
    font-family: Raleway,sans-serif;
    margin: 10px 0 5px 0;
}

.review-stars {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-family: Raleway,sans-serif;
}

.review-text {
    background-color: #181a1b;
    margin: 0 15px 15px 15px;
    padding: 20px;
    border-radius: 6px;
    font-style: italic;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.reviews::-webkit-scrollbar {
    height: 4px;
}


.reviews::-webkit-scrollbar-thumb {
    height: 4px;
}


@media only screen and (max-width: 1000px) {
    #container-7 {
        left: 0px;
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .review-box {
        flex: 0 0 100%;
    }
}